home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / TypLsItr.idl < prev    next >
Encoding:
Text File  |  1997-01-01  |  990 b   |  48 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _TYPLSITR_
  4. #define _TYPLSITR_
  5.  
  6. #ifndef _ODOBJECT_
  7. #include "ODObject.idl"
  8. #endif
  9.  
  10. //=====================================================================================
  11. // Classes defined in this interface
  12. //=====================================================================================
  13. interface  ODTypeListIterator;
  14.  
  15.  
  16. //=====================================================================================
  17. // Class ODTypeListIterator
  18. //=====================================================================================
  19.  
  20. interface ODTypeListIterator : ODObject
  21. {
  22.     ODBoolean IsNotComplete();
  23.     ODType First();
  24.     ODType Next();
  25.     
  26.     
  27. #ifdef __SOMIDL__
  28.     implementation
  29.     {
  30.         majorversion = 1; minorversion = 0;
  31.  
  32.         functionprefix = ODTypeListIterator;
  33.  
  34.         override:
  35.             somUninit;
  36.  
  37.         releaseorder:
  38.             IsNotComplete,
  39.             First,
  40.             Next,
  41.             reserved1;
  42.  
  43.     };
  44. #endif //# __SOMIDL__
  45. };
  46.  
  47. #endif  // _TYPLSITR_
  48.